TARGET = abort
CFLAGS = -g3 -Wall -Wextra -std=c99

all: $(TARGET)


.PHONY:

clean:
	$(RM) $(TARGET) a.out core *.o
